home *** CD-ROM | disk | FTP | other *** search
/ Champak 120 / Vol 120.iso / games / tobby_ur.swf / scripts / DefineSprite_192 / frame_3 / DoAction.as
Encoding:
Text File  |  2010-11-09  |  218 b   |  12 lines

  1. this.alphaRate -= 100 / this.FadeFrm;
  2. if(this.alphaRate < 0)
  3. {
  4.    this.alphaRate = 0;
  5.    this.gotoAndPlay(_currentframe + 1);
  6. }
  7. else
  8. {
  9.    this.gotoAndPlay(_currentframe - 1);
  10. }
  11. this._alpha = this.alphaRate;
  12.